MindFusion.Charting Programmer's Guide

PointCollection.Insert Method

See Also
 





Inserts the specified point in the collection at the specified position.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public void Insert (
    int index,
    PointF[] points
)

Visual Basic  Copy Code

Public Sub Insert ( _
    index As Integer, _
    points() As PointF _
)

JavaScript  Copy Code

function Insert (index, points)

 Parameters

index
The zero-based index at which to insert the point.
points
The PointF object to add to the collection.

 See Also